home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / ccc.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-10-16  |  2.4 KB  |  69 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "Connector"
  5.    ClientHeight    =   1545
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   1815
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1545
  13.    ScaleWidth      =   1815
  14.    StartUpPosition =   3  'Windows Default
  15.    Begin VB.CheckBox ArrowSecond 
  16.       Caption         =   "Arrow2"
  17.       Height          =   495
  18.       Left            =   360
  19.       TabIndex        =   2
  20.       Top             =   480
  21.       Width           =   1455
  22.    End
  23.    Begin VB.CheckBox ArrowFirst 
  24.       Caption         =   "Arrow1"
  25.       Height          =   495
  26.       Left            =   360
  27.       TabIndex        =   1
  28.       Top             =   120
  29.       Width           =   1215
  30.    End
  31.    Begin VB.CommandButton cmdOK 
  32.       Caption         =   "OK"
  33.       Height          =   375
  34.       Left            =   360
  35.       TabIndex        =   0
  36.       Top             =   1080
  37.       Width           =   1095
  38.    End
  39. Attribute VB_Name = "Form1"
  40. Attribute VB_GlobalNameSpace = False
  41. Attribute VB_Creatable = False
  42. Attribute VB_PredeclaredId = True
  43. Attribute VB_Exposed = False
  44. Option Explicit
  45. '/******************************************************************/
  46. '/*                                                                */
  47. '/*                      TurboCAD for Windows                      */
  48. '/*                   Copyright (c) 1993 - 2001                    */
  49. '/*             International Microcomputer Software, Inc.         */
  50. '/*                            (IMSI)                              */
  51. '/*                      All rights reserved.                      */
  52. '/*                                                                */
  53. '/******************************************************************/
  54. ' Storage for read-only property indicating whether
  55. ' or not the dialog box was cancelled. Default is
  56. ' False. Note that the declaration is Private, so
  57. ' that the value cannot be set from the OLE client
  58. ' application. The client reads the value using the
  59. ' DialogCancelled property.
  60. Private blnDialogCanceled As Boolean
  61. ' Read-only property indicating cancellation of the
  62. ' dialog.
  63. Property Get DialogCanceled() As Boolean
  64.     DialogCanceled = blnDialogCanceled
  65. End Property
  66. Private Sub cmdOK_Click()
  67.     Me.Hide
  68. End Sub
  69.